home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / gawk-3.000 / gawk-3 / gawk-3.0.0 / custom.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-19  |  1.4 KB  |  44 lines

  1. /*
  2.  * custom.h
  3.  *
  4.  * This file is for use on systems where Autoconf isn't quite able to
  5.  * get things right. It is included after config.h in awk.h, to override
  6.  * definitions from Autoconf that are erroneous. See the manual for more
  7.  * information.
  8.  *
  9.  * If you make additions to this file for your system, please send me
  10.  * the information, to arnold@gnu.ai.mit.edu.
  11.  */
  12.  
  13. /* 
  14.  * Copyright (C) 1995 the Free Software Foundation, Inc.
  15.  * 
  16.  * This file is part of GAWK, the GNU implementation of the
  17.  * AWK Programming Language.
  18.  * 
  19.  * GAWK is free software; you can redistribute it and/or modify
  20.  * it under the terms of the GNU General Public License as published by
  21.  * the Free Software Foundation; either version 2 of the License, or
  22.  * (at your option) any later version.
  23.  * 
  24.  * GAWK is distributed in the hope that it will be useful,
  25.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  * GNU General Public License for more details.
  28.  * 
  29.  * You should have received a copy of the GNU General Public License
  30.  * along with this program; if not, write to the Free Software
  31.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
  32.  */
  33.  
  34. /* for MIPS RiscOS, from Nelson H. F. Beebe, beebe@math.utah.edu */
  35. #if defined(__host_mips) && defined(SYSTYPE_BSD43)
  36. #undef HAVE_STRTOD
  37. #undef HAVE_STRERROR
  38. #endif
  39.  
  40. #ifdef VMS_POSIX
  41. #undef VMS
  42. #include "vms/redirect.h"
  43. #endif
  44.